home *** CD-ROM | disk | FTP | other *** search
/ Popular Request / By Popular Request (Arsenal Computer)(SysOptics Distribution System).ISO / amiga3 / mgrmkcat.lha / makefile < prev    next >
Makefile  |  1993-11-28  |  945b  |  35 lines

  1. #
  2. # Makefile for MakeCat
  3. # ⌐ 1993 by Lars Hanke -- MGR-Software, Asgard
  4. #
  5. # NOTE: the whole program is quick and dirty, but it works!
  6. #       If you like to do any improvements feel free to do them, but
  7. #       please send me a patch. Anyhow, you may spread any patch or
  8. #       add on as FREEWARE. If this should evolve into a chaos and
  9. #       people blame me for it, I will cancel the right to spread
  10. #       patches, but work as coordinator instead.
  11. #
  12.  
  13. DIST = dh1:host/distribution/MGR-MakeCat.lha
  14.  
  15. .c.o:
  16.   sc errrexx nominc strmer opt $<
  17.  
  18. MakeCat: MakeCat.o lex.yy.o
  19.   slink lib:c.o MakeCat.o lex.yy.o lib lib:sc.lib lib:amiga.lib VERBOSE StripDebug
  20.  
  21. MakeCat.o: MakeCat.c MakeCat.h
  22. lex.yy.o:  lex.yy.c MakeCat.h
  23.  
  24. lex.yy.c:  c_lang.l
  25.   flex -8 c_lang.l
  26.  
  27. setprog: MakeCat
  28.   copy MakeCat sc:bin/MakeCat
  29.  
  30. archive:
  31.   lha -x u $(DIST) c_lang.l lex.yy.c MakeCat.c MakeCat makefile
  32.   lha -x u $(DIST) cmp.c cmp
  33.   lha -x u $(DIST) test.txt read.me
  34.  
  35.